1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * ChunkPurgerTest.java
6    *
7    * Created on 20-Jan-2005 at 10:38:34 AM
8    */
9   package ca.uhn.cache.internal.impl;
10  
11  import junit.framework.TestCase;
12  
13  
14  /***
15   * Tests the methods of the interface <code>IChunkPurger</code> implemented by <code>HibernateChunkStore</code>.  
16   * 
17   * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:21 $ by $Author: bryan_tripp $
19   */
20  public class ChunkPurgerTest extends TestCase {
21  
22      /*
23       * @see TestCase#setUp()
24       */
25      protected void setUp() throws Exception {
26          super.setUp();
27      }
28  
29      /*
30       * @see TestCase#tearDown()
31       */
32      protected void tearDown() throws Exception {
33          super.tearDown();
34      }
35      
36      /***
37       */
38      public void test1() {
39  //        VolatilityEnum volatility1 = VolatilityEnum.STABLE;
40  //        CacheReasonEnum[] reasons1 = new CacheReasonEnum[] { CacheReasonEnum.PRE_FETCH };
41  //        try{
42  //            trackChunk(myChunk1Query);
43  //            myHibernateChunkStore.put(myChunk1Query, volatility1, reasons1);
44  //        }
45  //        catch(AssertionError e){
46  //            fail("AssertionError must not be thrown");
47  //        }
48      }
49  
50  }